home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / tcl / tcl70b2.lha / tcl7.0b2 / tests / lrange.test < prev    next >
Text File  |  1993-02-06  |  3KB  |  80 lines

  1. # Commands covered:  lrange
  2. #
  3. # This file contains a collection of tests for one or more of the Tcl
  4. # built-in commands.  Sourcing this file into Tcl runs the tests and
  5. # generates output for errors.  No output means no errors were found.
  6. #
  7. # Copyright (c) 1991-1993 The Regents of the University of California.
  8. # All rights reserved.
  9. #
  10. # Permission is hereby granted, without written agreement and without
  11. # license or royalty fees, to use, copy, modify, and distribute this
  12. # software and its documentation for any purpose, provided that the
  13. # above copyright notice and the following two paragraphs appear in
  14. # all copies of this software.
  15. #
  16. # IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
  17. # DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
  18. # OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
  19. # CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  20. #
  21. # THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
  22. # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  23. # AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
  24. # ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
  25. # PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  26. #
  27. # $Header: /user6/ouster/tcl/tests/RCS/lrange.test,v 1.2 93/02/06 16:01:44 ouster Exp $ (Berkeley)
  28.  
  29. if {[string compare test [info procs test]] == 1} then {source defs}
  30.  
  31. test lrange-1.1 {range of list elements} {
  32.     lrange {a b c d} 1 2
  33. } {b c}
  34. test lrange-1.2 {range of list elements} {
  35.     lrange {a {bcd e {f g {}}} l14 l15 d} 1 1
  36. } {{bcd e {f g {}}}}
  37. test lrange-1.3 {range of list elements} {
  38.     lrange {a {bcd e {f g {}}} l14 l15 d} 3 end
  39. } {l15 d}
  40. test lrange-1.4 {range of list elements} {
  41.     lrange {a {bcd e {f g {}}} l14 l15 d} 4 10000
  42. } {d}
  43. test lrange-1.5 {range of list elements} {
  44.     lrange {a {bcd e {f g {}}} l14 l15 d} 4 3
  45. } {}
  46. test lrange-1.6 {range of list elements} {
  47.     lrange {a {bcd e {f g {}}} l14 l15 d} 10 11
  48. } {}
  49. test lrange-1.7 {range of list elements} {
  50.     lrange {a b c d e} -1 2
  51. } {a b c}
  52. test lrange-1.8 {range of list elements} {
  53.     lrange {a b c d e} -2 -1
  54. } {}
  55. test lrange-1.9 {range of list elements} {
  56.     lrange {a b c d e} -2 e
  57. } {a b c d e}
  58. test lrange-1.10 {range of list elements} {
  59.     lrange "a b\{c d" 1 2
  60. } "b\{c d"
  61.  
  62. test lrange-2.1 {error conditions} {
  63.     list [catch {lrange a b} msg] $msg
  64. } {1 {wrong # args: should be "lrange list first last"}}
  65. test lrange-2.2 {error conditions} {
  66.     list [catch {lrange a b 6 7} msg] $msg
  67. } {1 {wrong # args: should be "lrange list first last"}}
  68. test lrange-2.3 {error conditions} {
  69.     list [catch {lrange a b 6} msg] $msg
  70. } {1 {expected integer but got "b"}}
  71. test lrange-2.4 {error conditions} {
  72.     list [catch {lrange a 0 enigma} msg] $msg
  73. } {1 {expected integer or "end" but got "enigma"}}
  74. test lrange-2.5 {error conditions} {
  75.     list [catch {lrange "a \{b c" 3 4} msg] $msg
  76. } {1 {unmatched open brace in list}}
  77. test lrange-2.6 {error conditions} {
  78.     list [catch {lrange "a b c \{ d e" 1 4} msg] $msg
  79. } {1 {unmatched open brace in list}}
  80.